home *** CD-ROM | disk | FTP | other *** search
/ The PC-SIG Library 10 / The PC-Sig Library - Shareware for the IBM PC and Compatibles (PC-SIG)(Tenth Edition Disks 1-2804)(1991).iso / PC_SIGCD / 00 / 0 / DISK0009.ZIP / INDEX.DOC < prev    next >
Text File  |  1982-11-01  |  6KB  |  125 lines

  1.  
  2.                         10-31-82
  3.                         B. KENDALL
  4.  
  5.     THIS FILE DESCRIBES THE PROGRAMS ON THIS DISKETTE
  6.  
  7. The programs on this diskette were all adapted from the
  8. original 8080 Assembly language versions written for CP/M-80.
  9. They were all placed in the public domain by their authors 
  10. with the stipulation that they should not be used for commercial
  11. purposes ( to make money for others who did not write them ).
  12. These are some of my favorite programs, so I adapted them to
  13. run on the 8088, 8086 processors under MSDOS ( IBMDOS ).
  14. This was done with the aid of two CP/M-80 programs available
  15. from  SEATTLE COMPUTER PRODUCTS ( they wrote the original MSDOS
  16. which they called 86-DOS ).  The two programs are an 8086 cross-
  17. assembler and a Z-80 to 8086 assembly language translator
  18. ( Zilog mnemonics to pseudo Intel 8086 mnemonics ).  A similar
  19. set of programs is available from SORCIM ( at nearly three times
  20. the price ).  Hopefully, someone will make versions of these
  21. programs that run directly under MSDOS ( Microsoft bought the
  22. rights to these programs from SEATTLE COMPUTER PRODUCTS but
  23. has not released them ).
  24.  
  25. Now, to the programs....
  26.  
  27.  1.  MDM7I.COM, MDMIBM.ASM
  28.      This is a MODEM file transfer program as well as a terminal
  29.      program.  The original version of this program was written by 
  30.      WARD CHRISTENSEN.  A fairly extensive revision of was made
  31.      by MARK ZEIGER and later by JAMES MILLS.  This CP/M-80 version
  32.      is known as MODEM7 and versions of it are used on almost all
  33.      remote CP/M bulletin board systems around the country.  This
  34.      MSDOS  version was made from a special "portable" version of
  35.      MODEM7.  It does NOT have some of the newer ( and often flakey )
  36.      features of the most recent versions of MODEM7.  With this program
  37.      you can reliably transfer files over the phone ( with a MODEM )
  38.      to any other systems using a version of this program ( or using
  39.      WARD CHRISTENSEN'S protocol ).  In particular, you can run a 
  40.      RS-232 line directly between an IBM PC and a CP/M-80 based computer
  41.      and reliably transfer data at 9600 baud.  The file  MDMIBM.ASM,
  42.      is an overlay for the front of the MODEM program that personalizes
  43.      it for the IBM PC.  This is the only hardware dependent part.
  44.  
  45.  2.  MDM7.DOC
  46.      This is a document file that describes how the modem program is to
  47.      be used.  It was mostly written by  MARK ZEIGER.
  48.  
  49.  3.  CRCK4.COM, CRCK4.CPM
  50.      This is a file checksum program.  It is useful to validate a file
  51.      copy operation, a MODEM file transfer, or to validate a MASTER
  52.      disk to see if it is still correct.  The original CP/M-80
  53.      version was written by  KEITH PETERSEN, W8SDZ.  Command format:
  54.  
  55.         A>CRCK4 <drive:>filename <F>
  56.  
  57.      Examples:
  58.         A>CRCK4 B:*.ASM
  59.              
  60.      This will display a CRC ( a form of checksum ) for each file
  61.      on drive  B  that has a name extension of  .ASM .  The file
  62.      name can be specified exactly ( for only one file ) or 
  63.      ambiguously with the WILD CARD characters: * and/or ? .
  64.  
  65.         A>CRCK4 C:*.* F
  66.  
  67.      This will display the CRC for all files on drive  C  and
  68.      also save this CRC display on a disk file on the default drive
  69.      ( drive  A  in this case ).
  70.  
  71.      The file  CRCK4.CPM  is a CP/M-80 version of the program.  If
  72.      you have any doubts as to the accuracy of file transfers to or
  73.      from CP/M-80  systems with the MODEM program, transfer this program
  74.      over to the CP/M-80 system, rename it to  CRCK4.COM, and compare
  75.      the CRC's it generates to those on the MSDOS system.
  76.  
  77.  4.  LOOK.COM
  78.      This is a memory byte search program.  It can be used to locate
  79.      all of the occurences of a specified string of from 1 to 8 
  80.      characters ( some of which may be WILD CARDS ).  It will only
  81.      search memory in its SEGMENT, so searches thru other 8086 memory
  82.      SEGMENTS must be done by copying part of those segments into its
  83.      current segment.  Also, since the addresses it shows are relative
  84.      to its load segment, it is usually only useful when run from the
  85.      DEBUG program.  The program is self prompting.  Some of the original
  86.      code for the program came from the MAY 1978 Interface Age article
  87.      by KENYON SWARTWOUT.  These were used by  HENRY ROTHBERG to make
  88.      a NORTH STAR DOS version of the program which was adapted by 
  89.      B. KENDALL  for CP/M-80 and later for this MSDOS version.
  90.  
  91.  5.  FIND.COM
  92.      This is a disk file string search program.  It can be used to
  93.      show all the lines of a text file that contain a specified string.
  94.      The original version of this program was written by  WARD CHRISTENSEN.
  95.      Command format:
  96.  
  97.         A>FIND <drive:>filename string
  98.  
  99.      where "string" can be any collection of alpha numeric characters
  100.      not including any spaces or tabs.  Tabs can be "faked" by using
  101.      the "_" underline character in place of them.  Also, the "|"
  102.      character allows an OR function of two or more strings.  As with
  103.      the  CRCK4  program above, the file name may be specified with
  104.      WILD CARD characters to allow searching thru multiple files.
  105.  
  106.      Example:
  107.  
  108.         A>FIND B:*.DOC MODEM|MDM
  109.  
  110.      This will sesrch thru all of the  .DOC  files on drive  B  
  111.      for the occurence of either the string MODEM or MDM.
  112.  
  113.  6.  WASH.COM, WASH.DOC
  114.      This is a really nice disk maintenance program.  It allows
  115.      selective  eraseing, renaming, copying, or viewing of files
  116.      that match an initially specified search criterion.  The original
  117.      version of this program was written by  MICHAEL KARAS.  The 
  118.      program is menu driven and is esentially self prompting.  However,
  119.      the file  WASH.DOC  contains documentation on how to use it.
  120.  
  121.             ------------------------
  122.  
  123.      These MSDOS versions were made by BRUCE KENDALL.  In some cases
  124.      bugs were fixed in the CP/M versions and new or improved features
  125.      were added when the MSDOS versions were made.